<&contentdata section_name = 'settings' page_name = 'loggers' author = 'mrmt32' type = 'page' >

Router Logging Settings

Here you can set up the router logging feature.

<&javascript delayed='true'> SendCommandToServer({action:'get_settings', settings:'RouterPollInterval'}, function(jsonResponse) { if (jsonResponse.isError) { $("#routerLoggingForm").html(jsonResponse.ErrorString); } else { $("#routerLoggingForm").submit(function() { // Check the value is a valid time var interval = $("#RouterPollInterval").val(); if (isNaN(interval) || interval < 0) { alert("Interval entered is not a valid time-span!"); } else { $.post(InterfaceLocation + "?action=set_settings", $("#routerLoggingForm").serialize(), function(jsonResponse) { ParseContentData(window.ContentData.blocks.settings_change_status_block, {jsonResponse:jsonResponse}, function (output) { $(".settingsPage").html(output); }); }, "json"); ParseContentData(window.ContentData.blocks.loading_text_block, {}, function (output) { $(".settingsPage").html(output); }); } return false; }); ParseContentData(window.ContentData.blocks.logger_settings_form_block, jsonResponse.ReturnData, function(output) { $("#routerLoggingForm").html(output); }) } }); <&/javascript>
<&/contentdata> <&contentdata block_name = 'logger_settings_form_block' author = 'mrmt32' type = 'block' >

Router Polling

Note that this value should be no more than ~20 minutes as a greater time-span can cause incomplete bandwidth usage data.

The default of 1 minute is recommended.

Seconds

<&/contentdata>